home *** CD-ROM | disk | FTP | other *** search
- /* PageScrollView.h
- * Purpose: A subclass of ScrollView which adds controls to the scroller area.
- *
- * You may freely copy, distribute, and reuse the code in this example.
- * NeXT disclaims any warranty of any kind, expressed or implied, as to its fitness
- * for any particular use.
- *
- */
-
- #import <appkit/ScrollView.h>
-
- @interface PageScrollView:ScrollView
- {
- id pageUpButton, pageDownButton; /* items in ScrollerGadgets.nib */
- id pageForm, pageLabel, zoomPopUpList; /* items in ScrollerGadgets.nib */
- NXRect vertScrollerArea, horzScrollerArea;
- }
-
- - initFrame: (const NXRect *)frameRect;
- - pageButton: sender;
- - pageTo: sender;
- - zoomTo: sender;
-
-
- @end
-